バージョン

CreateCollectionChange<T>(ICollection<T>,T,T,Int32,String) メソッド

特定の項目の置換操作の UndoUnit を作成します。
シンタックス
'宣言
 
Public Overloads Overridable Function CreateCollectionChange(Of T)( _
   ByVal collection As ICollection(Of T), _
   ByVal oldItem As T, _
   ByVal newItem As T, _
   ByVal index As Integer, _
   ByVal itemTypeDisplayName As String _
) As UndoUnit
public virtual UndoUnit CreateCollectionChange<T>( 
   ICollection<T> collection,
   T oldItem,
   T newItem,
   int index,
   string itemTypeDisplayName
)

パラメータ

collection
変更されたコレクション。
oldItem
削除/置換された項目
newItem
oldItem に対する置換として追加された項目
index
古い項目が存在し、新しい項目が追加された場所のインデックス。
itemTypeDisplayName
エンドユーザーに提示される通りのコレクション内の項目のタイプを表す文字列、またはタイプ名と項目の両方またはいずれか一方を使用するためには null。

型パラメータ

T
コレクションの項目のタイプ。

戻り値の型

操作を元に戻すために使用できる UndoUnit
参照